我們曾經認識過for,
後來也遇到While,
如今又出現一個foreach
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CsharpDemo
{
class Program
{
static void Main(string[] args)
{
//宣告一個字串陣列
string[] storyArray = { "1.我是一顆蛋", "2.破殼而出", "3.吃了幾顆飼料,好飽", "4.漸漸長大成肉雞", "5.農場主人來在大家去市場玩", "6.因為太邊緣所以沒上到車", "7.大家一去就沒回來", "8.成為孤獨一隻雞" };
Console.WriteLine("這是很久很久以前,有一隻雞的故事");
//使用foreach處理陣列
foreach(string story in storyArray)
{
Console.WriteLine(story);
}
Console.ReadKey();
}
}
}
結果
這是很久很久以前,有一隻雞的故事
1.我是一顆蛋
2.破殼而出
3.吃了幾顆飼料,好飽
4.漸漸長大成肉雞
5.農場主人來在大家去市場玩
6.因為太邊緣所以沒上到車
7.大家一去就沒回來
8.成為孤獨一隻雞